home *** CD-ROM | disk | FTP | other *** search
/ PD ROM 1 / PD ROM Volume I - Macintosh Software from BMUG (1988).iso / Programming / Programming Tools / Sound / SoundDemo.a < prev    next >
Encoding:
Text File  |  1986-08-13  |  647 b   |  26 lines  |  [TEXT/ttxt]

  1. *    Sound Demonstration Program
  2. *    written for the Boston MacWorld Expo
  3. *    using the Macintosh Programmer's Workshop
  4. *
  5. *    © 1986 Fred A. Huxham
  6. *
  7. *------------------------------------------
  8. *    This is some assembly language glue
  9. *    to setup and restore register A5 around
  10. *    the call to our Vertical Retrace Task
  11. *------------------------------------------
  12. *
  13.     INCLUDE 'SysEqu.a'
  14.  
  15.     IMPORT    mySoundVBL
  16.     
  17. VBLGlue    PROC        EXPORT
  18.         MOVEM.L        A4-A5/D4-D7,-(SP)        ;Save our Registers
  19.         MOVE.L        CurrentA5,A5            ;Restoring A5
  20.         JSR            mySoundVBL                ;Jump to our VBL Task
  21.         MOVEM.L        (SP)+,A4-A5/D4-D7        ;Restore our Registers
  22.         RTS                                    ;and return
  23.         ENDPROC
  24.         
  25.         END